/*** Heading ***/

.cancellation-policy-heading h1 {
    font-size: 2rem; 
    color: #0a7c47; 
    line-height: 1; 
    margin-bottom: 5px; 
    text-align: left; 
}

@media (max-width: 768px) {
    .cancellation-policy-heading h1 {
        font-size: 1.8rem; 
    }
}


@media (max-width: 480px) {
    .cancellation-policy-heading h1 {
        font-size: 1.5rem; 
        margin-bottom: 15px; 
    }
}


/* Basic styling for the new left-column class */
.left-column {
    padding: 0 15px; 
    box-sizing: border-box; 
}

/* Heading and text adjustments */
.left-column h1 {
    font-size: 1.5rem;
	color:#132a13;
    line-height: 1;
    margin-bottom: 10px;
    word-wrap: break-word; 
	text-decoration:underline;
}

.left-column h2 {
    font-size: 1.2rem;
	color:#132a13;
    margin-top: 30px;
    margin-bottom: 15px;
}

.left-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000;
	text-align:justify;
    margin-bottom: 10px;
    word-wrap: break-word; 
}

/* Styling for the list items */
ul {
    padding-left: 20px;
}

ul li {
    font-size: 1rem; 
    line-height: 1.8; 
    margin-bottom: 10px; 
	text-align: justify;
}


ul li i {
    color: white; 
    background-color: #0a7c47; 
    border-radius: 50%; 
    padding: 8px; 
    margin-right: 10px; 
    font-size: 1.5rem; 
}


/* Responsive adjustments for large screens (1200px and below) */
@media (max-width: 1200px) {
    .left-column {
        padding: 0 10px; 
    }

    .left-column h1 {
        font-size: 2.2rem;
    }

    .left-column h2 {
        font-size: 1.8rem;
    }

    .left-column p {
        font-size: 1.05rem;
    }
}

/* Further adjustments for smaller screens (768px and below) */
@media (max-width: 768px) {
    .left-column {
        padding: 0 8px; 
    }

    .left-column h1 {
        font-size: 1.8rem;
    }

    .left-column h2 {
        font-size: 1.6rem;
    }

    .left-column p {
        font-size: 1rem;
    }
}

/* Adjustments for mobile screens (480px and below) */
@media (max-width: 480px) {
    .left-column {
        padding: 0 5px; /* Minimal padding to avoid overflow */
    }

    .left-column h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .left-column h2 {
        font-size: 1.4rem;
        margin-top: 25px;
    }

    .left-column p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

/*** Right Colum ***/

.author-banner {
    width: 100%;
    max-width: 350px; 
    margin: 0 auto;
    text-align: center;
}

.author-banner img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    border-radius: 10px; 
    border: 5px solid #0a7c47; 
}


/* Paid Free Features */
.paid-features {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 5px solid #0a7c47; 
}

.paid-features h3 {
    font-size: 1.5rem;
    color: #0a7c47;
    margin-bottom: 20px;
}

.paid-features .list-group-item {
    font-size: 1rem;
    padding: 15px;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #ddd;
}

.paid-features .badge {
    font-size: 1rem;
    background-color: #0a7c47;
    color: white;
}

.paid-features button {
    background-color: #0a7c47;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.paid-features button:hover {
    background-color: #055b33;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .author-banner {
        max-width: 350px; 
    }

    .paid-features {
        padding: 15px;
    }

    .paid-features h3 {
        font-size: 1.3rem;
    }

    .paid-features .list-group-item {
        font-size: 0.95rem;
    }

    .paid-features button {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .author-banner {
        max-width: 350px; /* Further reduction for very small screens */
    }

    .paid-features {
        padding: 10px;
    }

    .paid-features h3 {
        font-size: 1.2rem;
    }

    .paid-features .list-group-item {
        font-size: 0.9rem;
    }

    .paid-features button {
        padding: 8px 12px;
    }
}

/*** Call Back ***/


